home *** CD-ROM | disk | FTP | other *** search
/ SGI Freeware 1999 August / SGI Freeware 1999 August.iso / dist / fw_xemacs.idb / usr / freeware / lib / xemacs-20.4 / info / texinfo.info-9.z / texinfo.info-9
Encoding:
GNU Info File  |  1998-05-21  |  46.1 KB  |  1,225 lines

  1. This is Info file ../info/texinfo.info, produced by Makeinfo version
  2. 1.68 from the input file texinfo.texi.
  3.  
  4. INFO-DIR-SECTION Texinfo documentation system
  5. START-INFO-DIR-ENTRY
  6. * Texinfo: (texinfo).           The GNU documentation format.
  7. * install-info: (texinfo)Invoking install-info. Updating info/dir entries.
  8. * texi2dvi: (texinfo)Format with texi2dvi.      Printing Texinfo documentation.
  9. * texindex: (texinfo)Format with tex/texindex.  Sorting Texinfo index files.
  10. * makeinfo: (texinfo)makeinfo Preferred.        Translate Texinfo source.
  11. END-INFO-DIR-ENTRY
  12.  
  13.   This file documents Texinfo, a documentation system that can produce
  14. both on-line information and a printed manual from a single source file.
  15.  
  16.   Copyright (C) 1988, 90, 91, 92, 93, 95, 96, 97 Free Software
  17. Foundation, Inc.
  18.  
  19.   This is the second edition of the Texinfo documentation,
  20. and is consistent with version 2 of `texinfo.tex'.
  21.  
  22.   Permission is granted to make and distribute verbatim copies of this
  23. manual provided the copyright notice and this permission notice are
  24. preserved on all copies.
  25.  
  26.   Permission is granted to copy and distribute modified versions of this
  27. manual under the conditions for verbatim copying, provided that the
  28. entire resulting derived work is distributed under the terms of a
  29. permission notice identical to this one.
  30.  
  31.   Permission is granted to copy and distribute translations of this
  32. manual into another language, under the above conditions for modified
  33. versions, except that this permission notice may be stated in a
  34. translation approved by the Free Software Foundation.
  35.  
  36. 
  37. File: texinfo.info,  Node: Other Info Directories,  Next: Installing Dir Entries,  Prev: New Info File,  Up: Install an Info File
  38.  
  39. Info Files in Other Directories
  40. ===============================
  41.  
  42.   If an Info file is not in the `info' directory, there are three ways
  43. to specify its location:
  44.  
  45.    * Write the pathname in the `dir' file as the second part of the
  46.      menu.
  47.  
  48.    * If you are using Emacs, list the name of the file in a second `dir'
  49.      file, in its directory; and then add the name of that directory to
  50.      the `Info-directory-list' variable in your personal or site
  51.      initialization file.
  52.  
  53.      This tells Emacs where to look for `dir' files.  Emacs merges the
  54.      files named `dir' from each of the listed directories.  (In Emacs
  55.      version 18, you can set the `Info-directory' variable to the name
  56.      of only one directory.)
  57.  
  58.    * Specify the Info directory name in the `INFOPATH' environment
  59.      variable in your `.profile' or `.cshrc' initialization file.
  60.      (Only you and others who set this environment variable will be
  61.      able to find Info files whose location is specified this way.)
  62.  
  63.   For example, to reach a test file in the `/home/bob/manuals'
  64. directory, you could add an entry like this to the menu in the `dir'
  65. file:
  66.  
  67.      * Test: (/home/bob/manuals/info-test).  Bob's own test file.
  68.  
  69. In this case, the absolute file name of the `info-test' file is written
  70. as the second part of the menu entry.
  71.  
  72.   Alternatively, you could write the following in your `.emacs' file:
  73.  
  74.      (setq Info-directory-list
  75.            '("/home/bob/manuals"
  76.              "/usr/local/info"))
  77.  
  78.   This tells Emacs to merge the `dir' file from the `/home/bob/manuals'
  79. directory with the `dir' file from the `/usr/local/info' directory.
  80. Info will list the `/home/bob/manuals/info-test' file as a menu entry
  81. in the `/home/bob/manuals/dir' file.
  82.  
  83.   Finally, you can tell Info where to look by setting the `INFOPATH'
  84. environment variable in your `.cshrc' or `.profile' file.  If you use a
  85. Bourne-compatible shell such as `sh' or `bash' for your shell command
  86. interpreter, you set the `INFOPATH' environment variable in the
  87. `.profile' initialization file; but if you use `csh' or `tcsh', you
  88. must set the variable in the `.cshrc' initialization file.  The two
  89. types of shells use different syntax.
  90.  
  91.    * In a `.cshrc' file, you could set the `INFOPATH' variable as
  92.      follows:
  93.  
  94.           setenv INFOPATH .:~/manuals:/usr/local/emacs/info
  95.  
  96.    * In a `.profile' file, you would achieve the same effect by writing:
  97.  
  98.           INFOPATH=.:$HOME/manuals:/usr/local/emacs/info
  99.           export INFOPATH
  100.  
  101. The `.' indicates the current directory as usual.  Emacs uses the
  102. `INFOPATH' environment variable to initialize the value of Emacs's own
  103. `Info-directory-list' variable.
  104.  
  105.   However you set `INFOPATH', if its last character is a colon, this is
  106. replaced by the default (compiled-in) path.  This gives you a way to
  107. augment the default path with new directories without having to list all
  108. the standard places.  For example (using `sh' syntax:
  109.  
  110.      INFOPATH=/local/info:
  111.      export INFOPATH
  112.  
  113. will search `/local/info' first, then the standard directories.
  114. Leading or doubled colons are not treated specially.
  115.  
  116. 
  117. File: texinfo.info,  Node: Installing Dir Entries,  Next: Invoking install-info,  Prev: Other Info Directories,  Up: Install an Info File
  118.  
  119. Installing Info Directory Files
  120. ===============================
  121.  
  122.   When you install an Info file onto your system, you can use the
  123. program `install-info' to update the Info directory file `dir'.
  124. Normally the makefile for the package runs `install-info', just after
  125. copying the Info file into its proper installed location.
  126.  
  127.   In order for the Info file to work with `install-info', you should
  128. use the commands `@dircategory' and `@direntry' in the Texinfo source
  129. file.  Use `@direntry' to specify the menu entry to add to the Info
  130. directory file, and use `@dircategory' to specify which part of the
  131. Info directory to put it in.  Here is how these commands are used in
  132. this manual:
  133.  
  134.      @dircategory Texinfo documentation system
  135.      @direntry
  136.      * Texinfo: (texinfo).           The GNU documentation format.
  137.      * install-info: (texinfo)Invoking install-info. ...
  138.      ...
  139.      @end direntry
  140.  
  141.   Here's what this produces in the Info file:
  142.  
  143.      INFO-DIR-SECTION Texinfo documentation system
  144.      START-INFO-DIR-ENTRY
  145.      * Texinfo: (texinfo).           The GNU documentation format.
  146.      * install-info: (texinfo)Invoking install-info. ...
  147.      ...
  148.      END-INFO-DIR-ENTRY
  149.  
  150. The `install-info' program sees these lines in the Info file, and that
  151. is how it knows what to do.
  152.  
  153.   Always use the `@direntry' and `@dircategory' commands near the
  154. beginning of the Texinfo input, before the first `@node' command.  If
  155. you use them later on in the input, `install-info' will not notice them.
  156.  
  157.   If you use `@dircategory' more than once in the Texinfo source, each
  158. usage specifies one category; the new menu entry is added to the Info
  159. directory file in each of the categories you specify.  If you use
  160. `@direntry' more than once, each usage specifies one menu entry; each
  161. of these menu entries is added to the directory in each of the
  162. specified categories.
  163.  
  164. 
  165. File: texinfo.info,  Node: Invoking install-info,  Prev: Installing Dir Entries,  Up: Install an Info File
  166.  
  167. Invoking install-info
  168. =====================
  169.  
  170.   `install-info' inserts menu entries from an Info file into the
  171. top-level `dir' file in the Info system (see the previous sections for
  172. an explanation of how the `dir' file works).  It's most often run as
  173. part of software installation, or when constructing a dir file for all
  174. manuals on a system.  Synopsis:
  175.  
  176.      install-info [OPTION]... [INFO-FILE [DIR-FILE]]
  177.  
  178.   If INFO-FILE or DIR-FILE are not specified, the various options
  179. (described below) that define them must be.  There are no compile-time
  180. defaults, and standard input is never used.  `install-info' can read
  181. only one info file and write only one dir file per invocation.
  182.  
  183.   If DIR-FILE (however specified) does not exist, `install-info'
  184. creates it if possible (with no entries).
  185.  
  186.   Options:
  187.  
  188. `--delete'
  189.      Delete the entries in INFO-FILE from DIR-FILE.  The file name in
  190.      the entry in DIR-FILE must be INFO-FILE (except for an optional
  191.      `.info' in either one).  Don't insert any new entries.
  192.  
  193. `--dir-file=NAME'
  194.      Specify file name of the Info directory file.  This is equivalent
  195.      to using the DIR-FILE argument.
  196.  
  197. `--entry=TEXT'
  198.      Insert TEXT as an Info directory entry; TEXT should have the form
  199.      of an Info menu item line plus zero or more extra lines starting
  200.      with whitespace.  If you specify more than one entry, they are all
  201.      added.  If you don't specify any entries, they are determined from
  202.      information in the Info file itself.
  203.  
  204. `--help'
  205.      Display a usage message listing basic usage and all available
  206.      options, then exit successfully.
  207.  
  208. `--info-file=FILE'
  209.      Specify Info file to install in the directory.  This is equivalent
  210.      to using the INFO-FILE argument.
  211.  
  212. `--info-dir=DIR'
  213.      Equivalent to `--dir-file=DIR/dir'.
  214.  
  215. `--item=TEXT'
  216.      Same as `--entry=TEXT'.  An Info directory entry is actually a
  217.      menu item.
  218.  
  219. `--quiet'
  220.      Suppress warnings.
  221.  
  222. `--remove'
  223.      Same as `--delete'.
  224.  
  225. `--section=SEC'
  226.      Put this file's entries in section SEC of the directory.  If you
  227.      specify more than one section, all the entries are added in each
  228.      of the sections.  If you don't specify any sections, they are
  229.      determined from information in the Info file itself.
  230.  
  231. `--version'
  232.      Display version information and exit successfully.
  233.  
  234. 
  235. File: texinfo.info,  Node: Command List,  Next: Tips,  Prev: Install an Info File,  Up: Top
  236.  
  237. @-Command List
  238. **************
  239.  
  240.   Here is an alphabetical list of the @-commands in Texinfo.  Square
  241. brackets, [ ], indicate optional arguments; an ellipsis, `...',
  242. indicates repeated text.
  243.  
  244. `@WHITESPACE'
  245.      An `@' followed by a space, tab, or newline produces a normal,
  246.      stretchable, interword space.  *Note Multiple Spaces::.
  247.  
  248. `@!'
  249.      Generate an exclamation point that really does end a sentence
  250.      (usually after an end-of-sentence capital letter).  *Note Ending a
  251.      Sentence::.
  252.  
  253. `@"'
  254. `@''
  255.      Generate an umlaut or acute accent, respectively, over the next
  256.      character, as in "o and 'o.  *Note Inserting Accents::.
  257.  
  258. `@*'
  259.      Force a line break. Do not end a paragraph that uses `@*' with an
  260.      `@refill' command.  *Note Line Breaks::.
  261.  
  262. `@,{C}'
  263.      Generate a cedilla accent under C, as in c,.  *Note Inserting
  264.      Accents::.
  265.  
  266. `@-'
  267.      Insert a discretionary hyphenation point.  *Note - and
  268.      hyphenation::.
  269.  
  270. `@.'
  271.      Produce a period that really does end a sentence (usually after an
  272.      end-of-sentence capital letter).  *Note Ending a Sentence::.
  273.  
  274. `@:'
  275.      Indicate to TeX that an immediately preceding period, question
  276.      mark, exclamation mark, or colon does not end a sentence.  Prevent
  277.      TeX from inserting extra whitespace as it does at the end of a
  278.      sentence.  The command has no effect on the Info file output.
  279.      *Note Not Ending a Sentence::.
  280.  
  281. `@='
  282.      Generate a macro (bar) accent over the next character, as in =o.
  283.      *Note Inserting Accents::.
  284.  
  285. `@?'
  286.      Generate a question mark that really does end a sentence (usually
  287.      after an end-of-sentence capital letter).  *Note Ending a
  288.      Sentence::.
  289.  
  290. `@@'
  291.      Stands for an at sign, `@'.  *Note Inserting @ and braces: Braces
  292.      Atsigns.
  293.  
  294. `@^'
  295. `@`'
  296.      Generate a circumflex (hat) or grave accent, respectively, over
  297.      the next character, as in ^o.  *Note Inserting Accents::.
  298.  
  299. `@{'
  300.      Stands for a left brace, `{'.  *Note Inserting @ and braces:
  301.      Braces Atsigns.
  302.  
  303. `@}'
  304.      Stands for a right-hand brace, `}'.
  305.      *Note Inserting @ and braces: Braces Atsigns.
  306.  
  307. `@='
  308.      Generate a tilde accent over the next character, as in ~N.  *Note
  309.      Inserting Accents::.
  310.  
  311. `@AA{}'
  312. `@aa{}'
  313.      Generate the uppercase and lowercase Scandinavian A-ring letters,
  314.      respectively: AA, aa.  *Note Inserting Accents::.
  315.  
  316. `@AE{}'
  317. `@ae{}'
  318.      Generate the uppercase and lowercase AE ligatures, respectively:
  319.      AE, ae.  *Note Inserting Accents::.
  320.  
  321. `@afourpaper'
  322.      Change page dimensions for the A4 paper size.  Only allowed inside
  323.      `@iftex' ... `@end iftex'.  *Note A4 Paper::.
  324.  
  325. `@appendix TITLE'
  326.      Begin an appendix.  The title appears in the table of contents of
  327.      a printed manual.  In Info, the title is underlined with
  328.      asterisks.  *Note The `@unnumbered' and `@appendix' Commands:
  329.      unnumbered & appendix.
  330.  
  331. `@appendixsec TITLE'
  332. `@appendixsection TITLE'
  333.      Begin an appendix section within an appendix.  The section title
  334.      appears in the table of contents of a printed manual.  In Info,
  335.      the title is underlined with equal signs.  `@appendixsection' is a
  336.      longer spelling of the `@appendixsec' command.  *Note Section
  337.      Commands: unnumberedsec appendixsec heading.
  338.  
  339. `@appendixsubsec TITLE'
  340.      Begin an appendix subsection within an appendix.  The title appears
  341.      in the table of contents of a printed manual.  In Info, the title
  342.      is underlined with hyphens.  *Note Subsection Commands:
  343.      unnumberedsubsec appendixsubsec subheading.
  344.  
  345. `@appendixsubsubsec TITLE'
  346.      Begin an appendix subsubsection within an appendix subsection.  The
  347.      title appears in the table of contents of a printed manual.  In
  348.      Info, the title is underlined with periods.  *Note The `subsub'
  349.      Commands: subsubsection.
  350.  
  351. `@asis'
  352.      Used following `@table', `@ftable', and `@vtable' to print the
  353.      table's first column without highlighting ("as is").  *Note Making
  354.      a Two-column Table: Two-column Tables.
  355.  
  356. `@author AUTHOR'
  357.      Typeset AUTHOR flushleft and underline it.  *Note The `@title' and
  358.      `@author' Commands: title subtitle author.
  359.  
  360. `@b{TEXT}'
  361.      Print TEXT in bold font.  No effect in Info.  *Note Fonts::.
  362.  
  363. `@bullet{}'
  364.      Generate a large round dot, or the closest possible thing to one.
  365.      *Note `@bullet': bullet.
  366.  
  367. `@bye'
  368.      Stop formatting a file.  The formatters do not see the contents of
  369.      a file following an `@bye' command.  *Note Ending a File::.
  370.  
  371. `@c COMMENT'
  372.      Begin a comment in Texinfo.  The rest of the line does not appear
  373.      in either the Info file or the printed manual.  A synonym for
  374.      `@comment'.  *Note Comments: Comments.
  375.  
  376. `@cartouche'
  377.      Highlight an example or quotation by drawing a box with rounded
  378.      corners around it.  Pair with `@end cartouche'.  No effect in
  379.      Info.  *Note Drawing Cartouches Around Examples: cartouche.)
  380.  
  381. `@center LINE-OF-TEXT'
  382.      Center the line of text following the command.  *Note `@center':
  383.      titlefont center sp.
  384.  
  385. `@centerchap LINE-OF-TEXT'
  386.      Like `@chapter', but centers the chapter title.  *Note `@chapter':
  387.      chapter.
  388.  
  389. `@chapheading TITLE'
  390.      Print a chapter-like heading in the text, but not in the table of
  391.      contents of a printed manual.  In Info, the title is underlined
  392.      with asterisks.  *Note `@majorheading' and `@chapheading':
  393.      majorheading & chapheading.
  394.  
  395. `@chapter TITLE'
  396.      Begin a chapter.  The chapter title appears in the table of
  397.      contents of a printed manual.  In Info, the title is underlined
  398.      with asterisks.  *Note `@chapter': chapter.
  399.  
  400. `@cindex ENTRY'
  401.      Add ENTRY to the index of concepts.  *Note Defining the Entries of
  402.      an Index: Index Entries.
  403.  
  404. `@cite{REFERENCE}'
  405.      Highlight the name of a book or other reference that lacks a
  406.      companion Info file.  *Note `@cite': cite.
  407.  
  408. `@clear FLAG'
  409.      Unset FLAG, preventing the Texinfo formatting commands from
  410.      formatting text between subsequent pairs of `@ifset FLAG' and
  411.      `@end ifset' commands, and preventing `@value{FLAG}' from
  412.      expanding to the value to which FLAG is set.  *Note `@set'
  413.      `@clear' `@value': set clear value.
  414.  
  415. `@code{SAMPLE-CODE}'
  416.      Highlight text that is an expression, a syntactically complete
  417.      token of a program, or a program name.  *Note `@code': code.
  418.  
  419. `@comment COMMENT'
  420.      Begin a comment in Texinfo.  The rest of the line does not appear
  421.      in either the Info file or the printed manual.  A synonym for `@c'.
  422.      *Note Comments: Comments.
  423.  
  424. `@contents'
  425.      Print a complete table of contents.  Has no effect in Info, which
  426.      uses menus instead.  *Note Generating a Table of Contents:
  427.      Contents.
  428.  
  429. `@copyright{}'
  430.      Generate a copyright symbol.  *Note `@copyright': copyright symbol.
  431.  
  432. `@defcodeindex INDEX-NAME'
  433.      Define a new index and its indexing command.  Print entries in an
  434.      `@code' font.  *Note Defining New Indices: New Indices.
  435.  
  436. `@defcv CATEGORY CLASS NAME'
  437. `@defcvx CATEGORY CLASS NAME'
  438.      Format a description for a variable associated with a class in
  439.      object-oriented programming.  Takes three arguments: the category
  440.      of thing being defined, the class to which it belongs, and its
  441.      name.  *Note Definition Commands::, and *Note Def Cmds in Detail:
  442.      deffnx.
  443.  
  444. `@deffn CATEGORY NAME ARGUMENTS...'
  445. `@deffnx CATEGORY NAME ARGUMENTS...'
  446.      Format a description for a function, interactive command, or
  447.      similar entity that may take arguments.  `@deffn' takes as
  448.      arguments the category of entity being described, the name of this
  449.      particular entity, and its arguments, if any.  *Note Definition
  450.      Commands::.
  451.  
  452. `@defindex INDEX-NAME'
  453.      Define a new index and its indexing command.  Print entries in a
  454.      roman font.  *Note Defining New Indices: New Indices.
  455.  
  456. `@definfoenclose NEW-COMMAND, BEFORE, AFTER,'
  457.      Create new @-command for Info that marks text by enclosing it in
  458.      strings that precede and follow the text.  Write definition inside
  459.      of `@ifinfo' ... `@end ifinfo'. *Note Customized Highlighting::.
  460.  
  461. `@defivar CLASS INSTANCE-VARIABLE-NAME'
  462. `@defivarx CLASS INSTANCE-VARIABLE-NAME'
  463.      This command formats a description for an instance variable in
  464.      object-oriented programming.  The command is equivalent to `@defcv
  465.      {Instance Variable} ...'.  *Note Definition Commands::, and *Note
  466.      Def Cmds in Detail: deffnx.
  467.  
  468. `@defmac MACRO-NAME ARGUMENTS...'
  469. `@defmacx MACRO-NAME ARGUMENTS...'
  470.      Format a description for a macro.  The command is equivalent to
  471.      `@deffn Macro ...'.  *Note Definition Commands::, and *Note Def
  472.      Cmds in Detail: deffnx.
  473.  
  474. `@defmethod CLASS METHOD-NAME ARGUMENTS...'
  475. `@defmethodx CLASS METHOD-NAME ARGUMENTS...'
  476.      Format a description for a method in object-oriented programming.
  477.      The command is equivalent to `@defop Method ...'.  Takes as
  478.      arguments the name of the class of the method, the name of the
  479.      method, and its arguments, if any.  *Note Definition Commands::,
  480.      and *Note Def Cmds in Detail: deffnx.
  481.  
  482. `@defop CATEGORY CLASS NAME ARGUMENTS...'
  483. `@defopx CATEGORY CLASS NAME ARGUMENTS...'
  484.      Format a description for an operation in object-oriented
  485.      programming.  `@defop' takes as arguments the overall name of the
  486.      category of operation, the name of the class of the operation, the
  487.      name of the operation, and its arguments, if any.  *Note
  488.      Definition Commands::, and *Note Def Cmds in Detail: deffnx.
  489.  
  490. `@defopt OPTION-NAME'
  491. `@defoptx OPTION-NAME'
  492.      Format a description for a user option.  The command is equivalent
  493.      to `@defvr {User Option} ...'.  *Note Definition Commands::, and
  494.      *Note Def Cmds in Detail: deffnx.
  495.  
  496. `@defspec SPECIAL-FORM-NAME ARGUMENTS...'
  497. `@defspecx SPECIAL-FORM-NAME ARGUMENTS...'
  498.      Format a description for a special form.  The command is
  499.      equivalent to `@deffn {Special Form} ...'.  *Note Definition
  500.      Commands::, and *Note Def Cmds in Detail: deffnx.
  501.  
  502. `@deftp CATEGORY NAME-OF-TYPE ATTRIBUTES...'
  503. `@deftpx CATEGORY NAME-OF-TYPE ATTRIBUTES...'
  504.      Format a description for a data type.  `@deftp' takes as arguments
  505.      the category, the name of the type (which is a word like `int' or
  506.      `float'), and then the names of attributes of objects of that type.
  507.      *Note Definition Commands::, and *Note Def Cmds in Detail: deffnx.
  508.  
  509. `@deftypefn CLASSIFICATION DATA-TYPE NAME ARGUMENTS...'
  510. `@deftypefnx CLASSIFICATION DATA-TYPE NAME ARGUMENTS...'
  511.      Format a description for a function or similar entity that may take
  512.      arguments and that is typed.  `@deftypefn' takes as arguments the
  513.      classification of entity being described, the type, the name of the
  514.      entity, and its arguments, if any.  *Note Definition Commands::,
  515.      and *Note Def Cmds in Detail: deffnx.
  516.  
  517. `@deftypefun DATA-TYPE FUNCTION-NAME ARGUMENTS...'
  518. `@deftypefunx DATA-TYPE FUNCTION-NAME ARGUMENTS...'
  519.      Format a description for a function in a typed language.  The
  520.      command is equivalent to `@deftypefn Function ...'.  *Note
  521.      Definition Commands::, and *Note Def Cmds in Detail: deffnx.
  522.  
  523. `@deftypemethod CLASS DATA-TYPE METHOD-NAME ARGUMENTS...'
  524. `@deftypemethodx CLASS DATA-TYPE METHOD-NAME ARGUMENTS...'
  525.      Format a description for a typed method in object-oriented
  526.      programming.  Takes as arguments the name of the class of the
  527.      method, the return type of the method, the name of the method, and
  528.      its arguments, if any.  *Note Definition Commands::, and *Note Def
  529.      Cmds in Detail: deffnx.
  530.  
  531. `@deftypevr CLASSIFICATION DATA-TYPE NAME'
  532. `@deftypevrx CLASSIFICATION DATA-TYPE NAME'
  533.      Format a description for something like a variable in a typed
  534.      language--an entity that records a value.  Takes as arguments the
  535.      classification of entity being described, the type, and the name
  536.      of the entity.  *Note Definition Commands::, and *Note Def Cmds in
  537.      Detail: deffnx.
  538.  
  539. `@deftypevar DATA-TYPE VARIABLE-NAME'
  540. `@deftypevarx DATA-TYPE VARIABLE-NAME'
  541.      Format a description for a variable in a typed language.  The
  542.      command is equivalent to `@deftypevr Variable ...'.  *Note
  543.      Definition Commands::, and *Note Def Cmds in Detail: deffnx.
  544.  
  545. `@defun FUNCTION-NAME ARGUMENTS...'
  546. `@defunx FUNCTION-NAME ARGUMENTS...'
  547.      Format a description for functions.  The command is equivalent to
  548.      `@deffn Function ...'.  *Note Definition Commands::, and *Note Def
  549.      Cmds in Detail: deffnx.
  550.  
  551. `@defvar VARIABLE-NAME'
  552. `@defvarx VARIABLE-NAME'
  553.      Format a description for variables.  The command is equivalent to
  554.      `@defvr Variable ...'.  *Note Definition Commands::, and *Note Def
  555.      Cmds in Detail: deffnx.
  556.  
  557. `@defvr CATEGORY NAME'
  558. `@defvrx CATEGORY NAME'
  559.      Format a description for any kind of variable.  `@defvr' takes as
  560.      arguments the category of the entity and the name of the entity.
  561.      *Note Definition Commands::, and *Note Def Cmds in Detail: deffnx.
  562.  
  563. `@detailmenu{}'
  564.      Avoid `makeinfo' confusion stemming from the detailed node listing
  565.      in a master menu.  *Note Master Menu Parts::.
  566.  
  567. `@dfn{TERM}'
  568.      Highlight the introductory or defining use of a term.  *Note
  569.      `@dfn': dfn.
  570.  
  571. `@dircategory DIRPART'
  572.      Specify a part of the Info directory menu where this file's entry
  573.      should go.  *Note Installing Dir Entries::.
  574.  
  575. `@direntry'
  576.      Begin the Info directory menu entry for this file.  *Note
  577.      Installing Dir Entries::.
  578.  
  579. `@display'
  580.      Begin a kind of example.  Indent text, do not fill, do not select a
  581.      new font.  Pair with `@end display'.  *Note `@display': display.
  582.  
  583. `@dmn{DIMENSION}'
  584.      Format a unit of measure, as in 12pt.  Causes TeX to insert a thin
  585.      space before DIMENSION.  No effect in Info.  *Note `@dmn': dmn.
  586.  
  587. `@dotaccent{C}'
  588.      Generate a dot accent over the character C, as in .oo.  *Note
  589.      Inserting Accents::.
  590.  
  591. `@dots{}'
  592.      Insert an ellipsis: `...'.  *Note `@dots': dots.
  593.  
  594. `@email{ADDRESS[, DISPLAYED-TEXT]}'
  595.      Indicate an electronic mail address.  *Note `@email': email.
  596.  
  597. `@emph{TEXT}'
  598.      Highlight TEXT; text is displayed in *italics* in printed output,
  599.      and surrounded by asterisks in Info.  *Note Emphasizing Text:
  600.      Emphasis.
  601.  
  602. `@end ENVIRONMENT'
  603.      Ends ENVIRONMENT, as in `@end example'.  *Note @-commands:
  604.      Formatting Commands.
  605.  
  606. `@enddots{}'
  607.      Generate an end-of-sentence of ellipsis, like this ....  *Note
  608.      `@dots{}': dots.
  609.  
  610. `@enumerate [NUMBER-OR-LETTER]'
  611.      Begin a numbered list, using `@item' for each entry.  Optionally,
  612.      start list with NUMBER-OR-LETTER.  Pair with `@end enumerate'.
  613.      *Note `@enumerate': enumerate.
  614.  
  615. `@equiv{}'
  616.      Indicate to the reader the exact equivalence of two forms with a
  617.      glyph: `=='.  *Note Equivalence::.
  618.  
  619. `@error{}'
  620.      Indicate to the reader with a glyph that the following text is an
  621.      error message: `error-->'.  *Note Error Glyph::.
  622.  
  623. `@evenfooting [LEFT] @| [CENTER] @| [RIGHT]'
  624. `@evenheading [LEFT] @| [CENTER] @| [RIGHT]'
  625.      Specify page footings resp. headings for even-numbered (left-hand)
  626.      pages.  Only allowed inside `@iftex'.  *Note How to Make Your Own
  627.      Headings: Custom Headings.
  628.  
  629. `@everyfooting [LEFT] @| [CENTER] @| [RIGHT]'
  630. `@everyheading [LEFT] @| [CENTER] @| [RIGHT]'
  631.      Specify page footings resp. headings for every page.  Not relevant
  632.      to Info.  *Note How to Make Your Own Headings: Custom Headings.
  633.  
  634. `@example'
  635.      Begin an example.  Indent text, do not fill, and select
  636.      fixed-width font.  Pair with `@end example'.  *Note `@example':
  637.      example.
  638.  
  639. `@exclamdown{}'
  640.      Produce an upside-down exclamation point.  *Note Inserting
  641.      Accents::.
  642.  
  643. `@exdent LINE-OF-TEXT'
  644.      Remove any indentation a line might have.  *Note Undoing the
  645.      Indentation of a Line: exdent.
  646.  
  647. `@expansion{}'
  648.      Indicate the result of a macro expansion to the reader with a
  649.      special glyph: `==>'.  *Note ==> Indicating an Expansion:
  650.      expansion.
  651.  
  652. `@file{FILENAME}'
  653.      Highlight the name of a file, buffer, node, or directory.  *Note
  654.      `@file': file.
  655.  
  656. `@finalout'
  657.      Prevent TeX from printing large black warning rectangles beside
  658.      over-wide lines.  *Note Overfull hboxes::.
  659.  
  660. `@findex ENTRY'
  661.      Add ENTRY to the index of functions.  *Note Defining the Entries
  662.      of an Index: Index Entries.
  663.  
  664. `@flushleft'
  665. `@flushright'
  666.      Left justify every line but leave the right end ragged.  Leave
  667.      font as is.  Pair with `@end flushleft'.  `@flushright' analogous.
  668.      *Note `@flushleft' and `@flushright': flushleft & flushright.
  669.  
  670. `@footnote{TEXT-OF-FOOTNOTE}'
  671.      Enter a footnote.  Footnote text is printed at the bottom of the
  672.      page by TeX; Info may format in either `End' node or `Separate'
  673.      node style.  *Note Footnotes::.
  674.  
  675. `@footnotestyle STYLE'
  676.      Specify an Info file's footnote style, either `end' for the end
  677.      node style or `separate' for the separate node style.  *Note
  678.      Footnotes::.
  679.  
  680. `@format'
  681.      Begin a kind of example.  Like `@example' or `@display', but do
  682.      not narrow the margins and do not select the fixed-width font.
  683.      Pair with `@end format'.  *Note `@example': example.
  684.  
  685. `@ftable FORMATTING-COMMAND'
  686.      Begin a two-column table, using `@item' for each entry.
  687.      Automatically enter each of the items in the first column into the
  688.      index of functions.  Pair with `@end ftable'.  The same as
  689.      `@table', except for indexing.  *Note `@ftable' and `@vtable':
  690.      ftable vtable.
  691.  
  692. `@group'
  693.      Hold text together that must appear on one printed page.  Pair with
  694.      `@end group'.  Not relevant to Info.  *Note `@group': group.
  695.  
  696. `@H{C}'
  697.      Generate the long Hungarian umlaut accent over C, as in ''o.
  698.  
  699. `@heading TITLE'
  700.      Print an unnumbered section-like heading in the text, but not in
  701.      the table of contents of a printed manual.  In Info, the title is
  702.      underlined with equal signs.  *Note Section Commands:
  703.      unnumberedsec appendixsec heading.
  704.  
  705. `@headings ON-OFF-SINGLE-DOUBLE'
  706.      Turn page headings on or off, and/or specify single-sided or
  707.      double-sided page headings for printing.  *Note The `@headings'
  708.      Command: headings on off.
  709.  
  710. `@html'
  711.      Enter HTML completely.  Pair with `@end html'.  *Note Raw
  712.      Formatter Commands::.
  713.  
  714. `@hyphenation{HY-PHEN-A-TED WORDS}'
  715.      Explicitly define hyphenation points.  *Note `@-' and
  716.      `@hyphenation': - and hyphenation.
  717.  
  718. `@i{TEXT}'
  719.      Print TEXT in italic font.  No effect in Info.  *Note Fonts::.
  720.  
  721. `@ifclear FLAG'
  722.      If FLAG is cleared, the Texinfo formatting commands format text
  723.      between `@ifclear FLAG' and the following `@end ifclear' command.
  724.      *Note `@set' `@clear' `@value': set clear value.
  725.  
  726. `@ifhtml'
  727. `@ifinfo'
  728.      Begin a stretch of text that will be ignored by TeX when it
  729.      typesets the printed manual.  The text appears only in the HTML
  730.      resp. Info file.  Pair with `@end ifhtml' resp. `@end ifinfo'.
  731.      *Note Conditionals::.
  732.  
  733. `@ifnothtml'
  734. `@ifnotinfo'
  735. `@ifnottex'
  736.      Begin a stretch of text that will be ignored in one output format
  737.      but not the others.  The text appears only in the format not
  738.      specified.  Pair with `@end ifnothtml' resp. `@end ifnotinfo' resp.
  739.      `@end ifnotinfo'.  *Note Conditionals::.
  740.  
  741. `@ifset FLAG'
  742.      If FLAG is set, the Texinfo formatting commands format text
  743.      between `@ifset FLAG' and the following `@end ifset' command.
  744.      *Note `@set' `@clear' `@value': set clear value.
  745.  
  746. `@iftex'
  747.      Begin a stretch of text that will not appear in the Info file, but
  748.      will be processed only by TeX.  Pair with `@end iftex'.  *Note
  749.      Conditionally Visible Text: Conditionals.
  750.  
  751. `@ignore'
  752.      Begin a stretch of text that will not appear in either the Info
  753.      file or the printed output.  Pair with `@end ignore'.  *Note
  754.      Comments and Ignored Text: Comments.
  755.  
  756. `@image{FILENAME, [WIDTH], [HEIGHT]}'
  757.      Include graphics image in external FILENAME scaled to the given
  758.      WIDTH and/or HEIGHT.  *Note Images::.
  759.  
  760. `@include FILENAME'
  761.      Incorporate the contents of the file FILENAME into the Info file
  762.      or printed document.  *Note Include Files::.
  763.  
  764. `@inforef{NODE-NAME, [ENTRY-NAME], INFO-FILE-NAME}'
  765.      Make a cross reference to an Info file for which there is no
  766.      printed manual.  *Note Cross references using `@inforef': inforef.
  767.  
  768. `\input MACRO-DEFINITIONS-FILE'
  769.      Use the specified macro definitions file.  This command is used
  770.      only in the first line of a Texinfo file to cause TeX to make use
  771.      of the `texinfo' macro definitions file.  The backslash in `\input'
  772.      is used instead of an `@' because TeX does not recognize `@' until
  773.      after it has read the definitions file.  *Note The Texinfo File
  774.      Header: Header.
  775.  
  776. `@item'
  777.      Indicate the beginning of a marked paragraph for `@itemize' and
  778.      `@enumerate'; indicate the beginning of the text of a first column
  779.      entry for `@table', `@ftable', and `@vtable'.  *Note Lists and
  780.      Tables::.
  781.  
  782. `@itemize  MARK-GENERATING-CHARACTER-OR-COMMAND'
  783.      Produce a sequence of indented paragraphs, with a mark inside the
  784.      left margin at the beginning of each paragraph.  Pair with `@end
  785.      itemize'.  *Note `@itemize': itemize.
  786.  
  787. `@itemx'
  788.      Like `@item' but do not generate extra vertical space above the
  789.      item text.  *Note `@itemx': itemx.
  790.  
  791. `@kbd{KEYBOARD-CHARACTERS}'
  792.      Indicate text that is characters of input to be typed by users.
  793.      *Note `@kbd': kbd.
  794.  
  795. `@kbdinputstyle STYLE'
  796.      Specify when `@kbd' should use a font distinct from `@code'.
  797.      *Note `@kbd': kbd.
  798.  
  799. `@key{KEY-NAME}'
  800.      Indicate a name for a key on a keyboard.  *Note `@key': key.
  801.  
  802. `@kindex ENTRY'
  803.      Add ENTRY to the index of keys.  *Note Defining the Entries of an
  804.      Index: Index Entries.
  805.  
  806. `@L{}'
  807. `@l{}'
  808.      Generate the uppercase and lowercase Polish suppressed-L letters,
  809.      respectively: L/, l/.
  810.  
  811. `@lisp'
  812.      Begin an example of Lisp code.  Indent text, do not fill, and
  813.      select fixed-width font.  Pair with `@end lisp'.  *Note `@lisp':
  814.      Lisp Example.
  815.  
  816. `@lowersections'
  817.      Change subsequent chapters to sections, sections to subsections,
  818.      and so on. *Note `@raisesections' and `@lowersections':
  819.      Raise/lower sections.
  820.  
  821. `@macro MACRO-NAME {PARAMS}'
  822.      Define a new Texinfo command `@MACRO-NAME{PARAMS}'.  Only
  823.      supported by `makeinfo' and `texi2dvi'.  *Note Defining Macros::.
  824.  
  825. `@majorheading TITLE'
  826.      Print a chapter-like heading in the text, but not in the table of
  827.      contents of a printed manual.  Generate more vertical whitespace
  828.      before the heading than the `@chapheading' command.  In Info, the
  829.      chapter heading line is underlined with asterisks.  *Note
  830.      `@majorheading' and `@chapheading': majorheading & chapheading.
  831.  
  832. `@math{MATHEMATICAL-EXPRESSION}'
  833.      Format a mathematical expression.  *Note `@math': Inserting
  834.      Mathematical Expressions: math.
  835.  
  836. `@menu'
  837.      Mark the beginning of a menu of nodes in Info.  No effect in a
  838.      printed manual.  Pair with `@end menu'.  *Note Menus::.
  839.  
  840. `@minus{}'
  841.      Generate a minus sign, `-'.  *Note `@minus': minus.
  842.  
  843. `@multitable COLUMN-WIDTH-SPEC'
  844.      Begin a multi-column table.  Pair with `@end multitable'.  *Note
  845.      Multitable Column Widths::.
  846.  
  847. `@need N'
  848.      Start a new page in a printed manual if fewer than N mils
  849.      (thousandths of an inch) remain on the current page.  *Note
  850.      `@need': need.
  851.  
  852. `@node NAME, NEXT, PREVIOUS, UP'
  853.      Define the beginning of a new node in Info, and serve as a locator
  854.      for references for TeX.  *Note `@node': node.
  855.  
  856. `@noindent'
  857.      Prevent text from being indented as if it were a new paragraph.
  858.      *Note `@noindent': noindent.
  859.  
  860. `@O{}'
  861. `@o{}'
  862.      Generate the uppercase and lowercase O-with-slash letters,
  863.      respectively: O/, o/.
  864.  
  865. `@oddfooting [LEFT] @| [CENTER] @| [RIGHT]'
  866. `@oddheading [LEFT] @| [CENTER] @| [RIGHT]'
  867.      Specify page footings resp. headings for odd-numbered (right-hand)
  868.      pages.  Only allowed inside `@iftex'.  *Note How to Make Your Own
  869.      Headings: Custom Headings.
  870.  
  871. `@OE{}'
  872. `@oe{}'
  873.      Generate the uppercase and lowercase OE ligatures, respectively:
  874.      OE, oe.  *Note Inserting Accents::.
  875.  
  876. `@page'
  877.      Start a new page in a printed manual.  No effect in Info.  *Note
  878.      `@page': page.
  879.  
  880. `@paragraphindent INDENT'
  881.      Indent paragraphs by INDENT number of spaces; delete indentation
  882.      if the value of INDENT is 0; and do not change indentation if
  883.      INDENT is `asis'. *Note Paragraph Indenting: paragraphindent.
  884.  
  885. `@pindex ENTRY'
  886.      Add ENTRY to the index of programs.  *Note Defining the Entries of
  887.      an Index: Index Entries.
  888.  
  889. `@point{}'
  890.      Indicate the position of point in a buffer to the reader with a
  891.      glyph: `-!-'.  *Note Indicating Point in a Buffer: Point Glyph.
  892.  
  893. `@pounds{}'
  894.      Generate the pounds sterling currency sign.  *Note `@pounds{}':
  895.      pounds.
  896.  
  897. `@print{}'
  898.      Indicate printed output to the reader with a glyph: `-|'.  *Note
  899.      Print Glyph::.
  900.  
  901. `@printindex INDEX-NAME'
  902.      Print an alphabetized two-column index in a printed manual or
  903.      generate an alphabetized menu of index entries for Info.  *Note
  904.      Printing Indices & Menus::.
  905.  
  906. `@pxref{NODE-NAME, [ENTRY], [TOPIC-OR-TITLE], [INFO-FILE], [MANUAL]}'
  907.      Make a reference that starts with a lower case `see' in a printed
  908.      manual.  Use within parentheses only.  Do not follow command with a
  909.      punctuation mark--the Info formatting commands automatically insert
  910.      terminating punctuation as needed.  Only the first argument is
  911.      mandatory.  *Note `@pxref': pxref.
  912.  
  913. `@questiondown{}'
  914.      Generate an upside-down question mark.  *Note Inserting Accents::.
  915.  
  916. `@quotation'
  917.      Narrow the margins to indicate text that is quoted from another
  918.      real or imaginary work.  Write command on a line of its own.  Pair
  919.      with `@end quotation'.  *Note `@quotation': quotation.
  920.  
  921. `@r{TEXT}'
  922.      Print TEXT in roman font.  No effect in Info.  *Note Fonts::.
  923.  
  924. `@raisesections'
  925.      Change subsequent sections to chapters, subsections to sections,
  926.      and so on.  *Note `@raisesections' and `@lowersections':
  927.      Raise/lower sections.
  928.  
  929. `@ref{NODE-NAME, [ENTRY], [TOPIC-OR-TITLE], [INFO-FILE], [MANUAL]}'
  930.      Make a reference.  In a printed manual, the reference does not
  931.      start with a `See'.  Follow command with a punctuation mark.  Only
  932.      the first argument is mandatory.  *Note `@ref': ref.
  933.  
  934. `@refill'
  935.      In Info, refill and indent the paragraph after all the other
  936.      processing has been done.  No effect on TeX, which always refills.
  937.      This command is no longer needed, since all formatters now
  938.      automatically refill.  *Note Refilling Paragraphs::.
  939.  
  940. `@result{}'
  941.      Indicate the result of an expression to the reader with a special
  942.      glyph: `=>'.  *Note `@result': result.
  943.  
  944. `@ringaccent{C}'
  945.      Generate a ring accent over the next character, as in *o.  *Note
  946.      Inserting Accents::.
  947.  
  948. `@samp{TEXT}'
  949.      Highlight TEXT that is a literal example of a sequence of
  950.      characters.  Used for single characters, for statements, and often
  951.      for entire shell commands.  *Note `@samp': samp.
  952.  
  953. `@sc{TEXT}'
  954.      Set TEXT in a printed output in THE SMALL CAPS FONT and set text
  955.      in the Info file in uppercase letters.  *Note Smallcaps::.
  956.  
  957. `@section TITLE'
  958.      Begin a section within a chapter.  In a printed manual, the section
  959.      title is numbered and appears in the table of contents.  In Info,
  960.      the title is underlined with equal signs.  *Note `@section':
  961.      section.
  962.  
  963. `@set FLAG [STRING]'
  964.      Make FLAG active, causing the Texinfo formatting commands to
  965.      format text between subsequent pairs of `@ifset FLAG' and `@end
  966.      ifset' commands.  Optionally, set value of FLAG to STRING.  *Note
  967.      `@set' `@clear' `@value': set clear value.
  968.  
  969. `@setchapternewpage ON-OFF-ODD'
  970.      Specify whether chapters start on new pages, and if so, whether on
  971.      odd-numbered (right-hand) new pages.  *Note `@setchapternewpage':
  972.      setchapternewpage.
  973.  
  974. `@setfilename INFO-FILE-NAME'
  975.      Provide a name to be used by the Info file.  This command is
  976.      essential for TeX formatting as well, even though it produces no
  977.      output.  *Note `@setfilename': setfilename.
  978.  
  979. `@settitle TITLE'
  980.      Provide a title for page headers in a printed manual.  *Note
  981.      `@settitle': settitle.
  982.  
  983. `@shortcontents'
  984.      Print a short table of contents.  Not relevant to Info, which uses
  985.      menus rather than tables of contents.  A synonym for
  986.      `@summarycontents'.  *Note Generating a Table of Contents:
  987.      Contents.
  988.  
  989. `@shorttitlepage{TITLE}'
  990.      Generate a minimal title page.  *Note `@titlepage': titlepage.
  991.  
  992. `@smallbook'
  993.      Cause TeX to produce a printed manual in a 7 by 9.25 inch format
  994.      rather than the regular 8.5 by 11 inch format.  *Note Printing
  995.      Small Books: smallbook.  Also, see *Note `@smallexample' and
  996.      `@smalllisp': smallexample & smalllisp.
  997.  
  998. `@smallexample'
  999.      Indent text to indicate an example.  Do not fill, select
  1000.      fixed-width font.  In `@smallbook' format, print text in a smaller
  1001.      font than with `@example'.  Pair with `@end smallexample'.  *Note
  1002.      `@smallexample' and `@smalllisp': smallexample & smalllisp.
  1003.  
  1004. `@smalllisp'
  1005.      Begin an example of Lisp code.  Indent text, do not fill, select
  1006.      fixed-width font.  In `@smallbook' format, print text in a smaller
  1007.      font.  Pair with `@end smalllisp'.  *Note `@smallexample' and
  1008.      `@smalllisp': smallexample & smalllisp.
  1009.  
  1010. `@sp N'
  1011.      Skip N blank lines.  *Note `@sp': sp.
  1012.  
  1013. `@ss{}'
  1014.      Generate the German sharp-S es-zet letter, ss.  *Note Inserting
  1015.      Accents::.
  1016.  
  1017. `@strong TEXT'
  1018.      Emphasize TEXT by typesetting it in a *bold* font for the printed
  1019.      manual and by surrounding it with asterisks for Info.  *Note
  1020.      Emphasizing Text: emph & strong.
  1021.  
  1022. `@subheading TITLE'
  1023.      Print an unnumbered subsection-like heading in the text, but not in
  1024.      the table of contents of a printed manual.  In Info, the title is
  1025.      underlined with hyphens.  *Note `@unnumberedsubsec'
  1026.      `@appendixsubsec' `@subheading': unnumberedsubsec appendixsubsec
  1027.      subheading.
  1028.  
  1029. `@subsection TITLE'
  1030.      Begin a subsection within a section.  In a printed manual, the
  1031.      subsection title is numbered and appears in the table of contents.
  1032.      In Info, the title is underlined with hyphens.  *Note
  1033.      `@subsection': subsection.
  1034.  
  1035. `@subsubheading TITLE'
  1036.      Print an unnumbered subsubsection-like heading in the text, but
  1037.      not in the table of contents of a printed manual.  In Info, the
  1038.      title is underlined with periods.  *Note The `subsub' Commands:
  1039.      subsubsection.
  1040.  
  1041. `@subsubsection TITLE'
  1042.      Begin a subsubsection within a subsection.  In a printed manual,
  1043.      the subsubsection title is numbered and appears in the table of
  1044.      contents.  In Info, the title is underlined with periods.  *Note
  1045.      The `subsub' Commands: subsubsection.
  1046.  
  1047. `@subtitle TITLE'
  1048.      In a printed manual, set a subtitle in a normal sized font flush to
  1049.      the right-hand side of the page.  Not relevant to Info, which does
  1050.      not have title pages.  *Note `@title' `@subtitle' and `@author'
  1051.      Commands: title subtitle author.
  1052.  
  1053. `@summarycontents'
  1054.      Print a short table of contents.  Not relevant to Info, which uses
  1055.      menus rather than tables of contents.  A synonym for
  1056.      `@shortcontents'.  *Note Generating a Table of Contents: Contents.
  1057.  
  1058. `@syncodeindex FROM-INDEX INTO-INDEX'
  1059.      Merge the index named in the first argument into the index named in
  1060.      the second argument, printing the entries from the first index in
  1061.      `@code' font.  *Note Combining Indices::.
  1062.  
  1063. `@synindex FROM-INDEX INTO-INDEX'
  1064.      Merge the index named in the first argument into the index named in
  1065.      the second argument.  Do not change the font of FROM-INDEX
  1066.      entries.  *Note Combining Indices::.
  1067.  
  1068. `@t{TEXT}'
  1069.      Print TEXT in a fixed-width, typewriter-like font.  No effect in
  1070.      Info.  *Note Fonts::.
  1071.  
  1072. `@tab'
  1073.      Separate columns in a multitable.  *Note Multitable Rows::.
  1074.  
  1075. `@table FORMATTING-COMMAND'
  1076.      Begin a two-column table, using `@item' for each entry.  Write
  1077.      each first column entry on the same line as `@item'.  First column
  1078.      entries are printed in the font resulting from FORMATTING-COMMAND.
  1079.      Pair with `@end table'.  *Note Making a Two-column Table:
  1080.      Two-column Tables.  Also see *Note `@ftable' and `@vtable': ftable
  1081.      vtable, and *Note `@itemx': itemx.
  1082.  
  1083. `@TeX{}'
  1084.      Insert the logo TeX.  *Note Inserting TeX and (C): TeX and
  1085.      copyright.
  1086.  
  1087. `@tex'
  1088.      Enter TeX completely.  Pair with `@end tex'.  *Note Raw Formatter
  1089.      Commands::.
  1090.  
  1091. `@thischapter'
  1092. `@thischaptername'
  1093. `@thisfile'
  1094. `@thispage'
  1095. `@thistitle'
  1096.      Only allowed in a heading or footing.  Stands for the number and
  1097.      name of the current chapter (in the format `Chapter 1: Title'),
  1098.      the chapter name only, the filename, the current page number, and
  1099.      the title of the document, respectively.  *Note How to Make Your
  1100.      Own Headings: Custom Headings.
  1101.  
  1102. `@tieaccent{CC}'
  1103.      Generate a tie-after accent over the next two characters CC, as in
  1104.      `[oo'.  *Note Inserting Accents::.
  1105.  
  1106. `@tindex ENTRY'
  1107.      Add ENTRY to the index of data types.  *Note Defining the Entries
  1108.      of an Index: Index Entries.
  1109.  
  1110. `@title TITLE'
  1111.      In a printed manual, set a title flush to the left-hand side of the
  1112.      page in a larger than normal font and underline it with a black
  1113.      rule.  Not relevant to Info, which does not have title pages.
  1114.      *Note The `@title' `@subtitle' and `@author' Commands: title
  1115.      subtitle author.
  1116.  
  1117. `@titlefont{TEXT}'
  1118.      In a printed manual, print TEXT in a larger than normal font.  Not
  1119.      relevant to Info, which does not have title pages.  *Note The
  1120.      `@titlefont' `@center' and `@sp' Commands: titlefont center sp.
  1121.  
  1122. `@titlepage'
  1123.      Indicate to Texinfo the beginning of the title page.  Write
  1124.      command on a line of its own.  Pair with `@end titlepage'.
  1125.      Nothing between `@titlepage' and `@end titlepage' appears in Info.
  1126.      *Note `@titlepage': titlepage.
  1127.  
  1128. `@today{}'
  1129.      Insert the current date, in `1 Jan 1900' style.  *Note How to Make
  1130.      Your Own Headings: Custom Headings.
  1131.  
  1132. `@top TITLE'
  1133.      In a Texinfo file to be formatted with `makeinfo', identify the
  1134.      topmost `@node' line in the file, which must be written on the line
  1135.      immediately preceding the `@top' command.  Used for `makeinfo''s
  1136.      node pointer insertion feature.  The title is underlined with
  1137.      asterisks.  Both the `@node' line and the `@top' line normally
  1138.      should be enclosed by `@ifinfo' and `@end ifinfo'.  In TeX and
  1139.      `texinfo-format-buffer', the `@top' command is merely a synonym
  1140.      for `@unnumbered'.  *Note Creating Pointers with `makeinfo':
  1141.      makeinfo Pointer Creation.
  1142.  
  1143. `@u{C}'
  1144. `@ubaraccent{C}'
  1145. `@udotaccent{C}'
  1146.      Generate a breve, underbar, or underdot accent, respectively, over
  1147.      or under the character C, as in (o, o_, o-..  *Note Inserting
  1148.      Accents::.
  1149.  
  1150. `@unnumbered TITLE'
  1151.      In a printed manual, begin a chapter that appears without chapter
  1152.      numbers of any kind.  The title appears in the table of contents
  1153.      of a printed manual.  In Info, the title is underlined with
  1154.      asterisks.  *Note `@unnumbered' and `@appendix': unnumbered &
  1155.      appendix.
  1156.  
  1157. `@unnumberedsec TITLE'
  1158.      In a printed manual, begin a section that appears without section
  1159.      numbers of any kind.  The title appears in the table of contents
  1160.      of a printed manual.  In Info, the title is underlined with equal
  1161.      signs.  *Note Section Commands: unnumberedsec appendixsec heading.
  1162.  
  1163. `@unnumberedsubsec TITLE'
  1164.      In a printed manual, begin an unnumbered subsection within a
  1165.      chapter.  The title appears in the table of contents of a printed
  1166.      manual.  In Info, the title is underlined with hyphens.  *Note
  1167.      `@unnumberedsubsec' `@appendixsubsec' `@subheading':
  1168.      unnumberedsubsec appendixsubsec subheading.
  1169.  
  1170. `@unnumberedsubsubsec TITLE'
  1171.      In a printed manual, begin an unnumbered subsubsection within a
  1172.      chapter.  The title appears in the table of contents of a printed
  1173.      manual.  In Info, the title is underlined with periods.  *Note The
  1174.      `subsub' Commands: subsubsection.
  1175.  
  1176. `@uref{URL[, DISPLAYED-TEXT}'
  1177.      Define a cross reference to an external uniform resource locator
  1178.      for the World Wide Web.  *Note `@url': url.
  1179.  
  1180. `@url{URL}'
  1181.      Indicate text that is a uniform resource locator for the World Wide
  1182.      Web.  *Note `@url': url.
  1183.  
  1184. `@v{C}'
  1185.      Generate check accent over the character C, as in <o.  *Note
  1186.      Inserting Accents::.
  1187.  
  1188. `@value{FLAG}'
  1189.      Replace FLAG with the value to which it is set by `@set FLAG'.
  1190.      *Note `@set' `@clear' `@value': set clear value.
  1191.  
  1192. `@var{METASYNTACTIC-VARIABLE}'
  1193.      Highlight a metasyntactic variable, which is something that stands
  1194.      for another piece of text.  *Note Indicating Metasyntactic
  1195.      Variables: var.
  1196.  
  1197. `@vindex ENTRY'
  1198.      Add ENTRY to the index of variables.  *Note Defining the Entries
  1199.      of an Index: Index Entries.
  1200.  
  1201. `@vskip AMOUNT'
  1202.      In a printed manual, insert whitespace so as to push text on the
  1203.      remainder of the page towards the bottom of the page.  Used in
  1204.      formatting the copyright page with the argument `0pt plus 1filll'.
  1205.      (Note spelling of `filll'.)  `@vskip' may be used only in
  1206.      contexts ignored for Info.  *Note The Copyright Page and Printed
  1207.      Permissions: Copyright & Permissions.
  1208.  
  1209. `@vtable FORMATTING-COMMAND'
  1210.      Begin a two-column table, using `@item' for each entry.
  1211.      Automatically enter each of the items in the first column into the
  1212.      index of variables.  Pair with `@end vtable'.  The same as
  1213.      `@table', except for indexing.  *Note `@ftable' and `@vtable':
  1214.      ftable vtable.
  1215.  
  1216. `@w{TEXT}'
  1217.      Prevent TEXT from being split across two lines.  Do not end a
  1218.      paragraph that uses `@w' with an `@refill' command.  *Note `@w': w.
  1219.  
  1220. `@xref{NODE-NAME, [ENTRY], [TOPIC-OR-TITLE], [INFO-FILE], [MANUAL]}'
  1221.      Make a reference that starts with `See' in a printed manual.
  1222.      Follow command with a punctuation mark.  Only the first argument is
  1223.      mandatory.  *Note `@xref': xref.
  1224.  
  1225.